home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / fuse-utils.postrm < prev    next >
Text File  |  2008-09-25  |  228b  |  21 lines

  1. #!/bin/bash -e
  2.  
  3. test $DEBIAN_SCRIPT_DEBUG && set -v -x
  4.  
  5. case $1 in
  6.   purge|remove)
  7.   ;;
  8.  
  9.   failed-upgrade|upgrade|abort-upgrade)
  10.   ;;
  11.  
  12.   *)
  13.     echo "postrm called with unknown argument \`$1'" >&2
  14.     exit 1
  15.   ;;
  16. esac
  17.  
  18.  
  19.  
  20. exit 0
  21.